home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’94 / [√] Distribution Restricted! / James Ullrey / HP-15C / HP-15C.FPU68020 / HP-15C.FPU68020.rsrc / TEXT_1030_Enter Key.txt < prev    next >
Text File  |  1994-06-25  |  1KB  |  43 lines

  1. - STACK MANIPULATION FUNCTIONS 
  2. STACK MANIPULATION FUNCTIONS
  3.  
  4. Stack Manipulation Functions.
  5.  
  6. ENTER. Pressing ENTER separates two numbers keyed in one after another. It does so by lifting the stack and copying the number in the display (X-register) into the Y-register. The next number entered then writes over the value in the X-register; there is no stack lift. The example below shows what happens as the stack is filled with the numbers 1, 2, 3, 4.
  7.  
  8.          |----------> lost |--------> lost
  9.  T    t--| |-------->   z--| |------>  y
  10.  Z    z----| |------>   y----| |---->  x
  11.  Y    y------| |---->   x------| |-->  1
  12.  X    x--------| |-->   1--------|-->  1
  13.               |
  14. Keys:         1           ENTER
  15.  
  16.                            |--------> lost
  17.  T    y------------->   y--| |------>  x
  18.  Z    x------------->   x----| |---->  1
  19.  Y    1------------->   1------| |-->  2
  20.  X    1          |-->   2--------|-->  2
  21.               |
  22. Keys:         2           ENTER
  23.  
  24.                         |--------> lost
  25.  T    x------------->   x--| |------>  1
  26.  Z    1------------->   1----| |---->  2
  27.  Y    2------------->   2------| |-->  3
  28.  X    2          |-->   3--------|-->  3
  29.               |
  30. Keys:         3           ENTER
  31.  
  32.  
  33.  T    1------------->   1
  34.  Z    2------------->   2
  35.  Y    3------------->   3
  36.  X    3          |-->   4
  37.               |
  38. Keys:         4
  39.  
  40. See "CALCULATOR FUNCTIONS AND THE STACK", this help.
  41.  
  42.  
  43.